home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-09-08 | 624 b | 37 lines |
- package com.symantec.itools.lang;
-
-
- /**
- * @author Symantec Internet Tools Division
- * @version 1.0
- * @since VCafe 3.0
- */
-
- public class Machine
- {
-
- /**
- * @since VCafe 3.0
- */
- /* constants */
- // size of is number of bytes
- public static final int SIZEOF_LONG = 8;
-
- /**
- * @since VCafe 3.0
- */
- public static final int SIZEOF_INT = 4;
-
- /**
- * @since VCafe 3.0
- */
-
- // width of is number of bits
- public static final int WIDTHOF_BYTE = 8;
-
- /**
- * @since VCafe 3.0
- */
- public static final int WIDTHOF_INT = 32;
-
- }